Create the fraction instances of decimal numbers

Create the fraction instances of decimal numbers.
Sample decimal.2’ number:
Decimal(‘0), Decimal(‘0.7’), Decimal(‘2.5’), Decimal(‘3.0’)
Expected output:
0.2 = 1/5
0.7 = 7/10
2.5 = 5/2
3.0 = 3
import decimal
import fractions

values = [
    decimal.Decimal('0.2'),
    decimal.Decimal('0.7'),
    decimal.Decimal('2.5'),
    decimal.Decimal('3.0'),
]

for d in values:
    print('{} = {}'.format(d, fractions.Fraction(d)))

Output:

0.2 = 1/5
0.7 = 7/10
2.5 = 5/2
3.0 = 3